home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / StringFormat.au3 < prev    next >
Text File  |  2006-06-17  |  332b  |  10 lines

  1. $String = "string"
  2. $Float = 12.3
  3. $Int = 345
  4. $S =StringFormat ( "$String = %s" & @CRLF & "$Float = %.2f" & @CRLF & "$Int = %d" ,$String, $Float, $Int )
  5.  
  6. MsgBox(0, "Result", $S)
  7.  
  8. ; Will output         "$String=string $Float=12.30 $Int=345"
  9. ; Notice the 12.30 done with the %.2f which force's 2 digits after the decimal point
  10.